Overview
JoggAI sends HTTP POST requests to your webhook endpoint when events occur (like video completion). This eliminates the need for polling and provides instant notifications.Webhook Limit: Each user can create up to 20 webhook endpoints.
Real-Time Updates
Get notified instantly when videos complete
Reduced API Calls
No need to poll for status
Better UX
Respond to events immediately
Scalable
Handle high volumes efficiently
Workflow Overview
Webhook requests expect a
200 OK response within 5 seconds. Non-2xx responses trigger automatic retries.Quick Start
Step 1: Add Webhook Endpoint
Save the
secret - you’ll use it to verify webhook authenticity!Step 2: Verify Webhook Signature
Always verify that webhooks come from JoggAI:Go
Go
Python
Python
Node.js
Node.js
Bash
Bash
Webhook Events
Available Events
Event Payloads
Video Generation Success
Video Generation Success
Video Generation Failed
Video Generation Failed
Avatar Creation Success
Avatar Creation Success
Image Generation Success
Image Generation Success
Image Generation Failed
Image Generation Failed
Motion Generation Success
Motion Generation Success
Motion Generation Failed
Motion Generation Failed
Managing Webhooks
List All Webhooks
List All Webhooks
Update Webhook
Update Webhook
Delete Webhook
Delete Webhook
List Available Events
List Available Events
Security Requirements
Request Headers
Security Checklist
- ✅ All webhook URLs must use HTTPS
- ✅ Verify
X-Webhook-Signatureheader on every request - ✅ Use HMAC SHA-256 with your secret key
- ✅ Signature is computed on raw request body
- ✅ Use constant-time comparison to prevent timing attacks
- ✅ Keep webhook secret secure (environment variables)
- ✅ Rotate secrets periodically
Related Documentation
Create Avatar Videos
Set up video creation with webhooks
Product Video Workflow
Use webhooks for product videos
Webhook API Reference
Detailed webhook API documentation

